home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / games / nhak_src.zip / GOLD.H < prev    next >
C/C++ Source or Header  |  1993-03-16  |  401b  |  18 lines

  1. /*    SCCS Id: @(#)gold.h    3.0    88/08/08
  2. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
  3. /* NetHack may be freely redistributed.  See license for details. */
  4.  
  5. #ifndef GOLD_H
  6. #define GOLD_H
  7.  
  8. struct gold {
  9.     struct gold *ngold;
  10.     xchar gx,gy;
  11.     long amount;
  12. };
  13.  
  14. extern struct gold *fgold;
  15. #define newgold()    (struct gold *) alloc(sizeof(struct gold))
  16.  
  17. #endif /* GOLD_H /**/
  18.